const github.com/andybalholm/brotli.maxDistanceBits
5 uses
github.com/andybalholm/brotli (current package)
constants.go#L50: const maxDistanceBits = 24
decode.go#L2362: num_distance_codes = uint32(distanceAlphabetSize(uint(s.distance_postfix_bits), uint(num_direct_codes), maxDistanceBits))
encode.go#L606: params.dist.alphabet_size = uint32(distanceAlphabetSize(0, 0, maxDistanceBits))
metablock.go#L66: alphabet_size = uint32(distanceAlphabetSize(uint(npostfix), uint(ndirect), maxDistanceBits))
metablock.go#L67: max_distance = ndirect + (1 << (maxDistanceBits + npostfix + 2)) - (1 << (npostfix + 2))
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |